home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / exec / cause.c < prev    next >
C/C++ Source or Header  |  1996-10-24  |  858b  |  49 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: cause.c,v 1.3 1996/10/24 15:50:45 aros Exp $     $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "exec_intern.h"
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12.     #include <exec/interrupts.h>
  13.     #include <clib/exec_protos.h>
  14.  
  15.     AROS_LH1(void, Cause,
  16.  
  17. /*  SYNOPSIS */
  18.     AROS_LHA(struct Interrupt *, interrupt, A1),
  19.  
  20. /*  LOCATION */
  21.     struct ExecBase *, SysBase, 30, Exec)
  22.  
  23. /*  FUNCTION
  24.  
  25.     INPUTS
  26.  
  27.     RESULT
  28.  
  29.     NOTES
  30.  
  31.     EXAMPLE
  32.  
  33.     BUGS
  34.  
  35.     SEE ALSO
  36.  
  37.     INTERNALS
  38.  
  39.     HISTORY
  40.     29-10-95    digulla automatically created from
  41.                 exec_lib.fd and clib/exec_protos.h
  42.  
  43. *****************************************************************************/
  44. {
  45.     AROS_LIBFUNC_INIT
  46.     AROS_LIBBASE_EXT_DECL(struct ExecBase *,SysBase)
  47.     AROS_LIBFUNC_EXIT
  48. } /* Cause */
  49.